home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet internetowy / Rozne / HTTrack 3.40-2 / httrack-3.40-2.exe / {app} / src_win / htsswf / htsswf.h < prev    next >
C/C++ Source or Header  |  2002-10-05  |  830b  |  20 lines

  1.  
  2. // The following ifdef block is the standard way of creating macros which make exporting 
  3. // from a DLL simpler. All files within this DLL are compiled with the HTSSWF_EXPORTS
  4. // symbol defined on the command line. this symbol should not be defined on any project
  5. // that uses this DLL. This way any other project whose source files include this file see 
  6. // HTSSWF_API functions as being imported from a DLL, wheras this DLL sees symbols
  7. // defined with this macro as being exported.
  8. #ifdef HTSSWF_EXPORTS
  9. #define HTSSWF_API __declspec(dllexport)
  10. #else
  11. #define HTSSWF_API __declspec(dllimport)
  12. #endif
  13.  
  14. extern "C" {
  15.   #include "htsmodules.h"
  16.   #include "swf/swf2html_interface.h"
  17. };
  18. extern "C" HTSSWF_API int hts_detect_swf(htsmoduleStruct* str);
  19. extern "C" HTSSWF_API int hts_parse_swf(htsmoduleStruct* str);
  20.